SPB Git forge

spb/hilmacorp

Public
1commits 1branches 0releases
29.2 MBsize
maindefault branch
20 days agolast push
TypeScript 93.3% JavaScript 4.4% CSS 2.3%
341 B · 14 lines tsx
Raw Blame History
1/**2 * Author: Simon-Pierre Boucher3 * Contact: contact@spboucher.ai4 * Project: Hilmacorp.ai — Web Platform5 * File: app/[locale]/[...rest]/page.tsx6 * Description: Catch-all route delegating unknown paths to the locale-aware 404 page7 */89import { notFound } from "next/navigation";1011export default function CatchAll() {12  notFound();13}14